if(confirm("Submit form now?")){if (form.email.value.indexOf('@',0)==-1) r=0;if (form.URLS.value=="")r=0;if(form.use[0].checked==false && form.use[1].checked==false ) r=0;if (r==0) { alert('Form will not be submitted because you failed to fill out all the required parts of the form.'); return false; }else { return true; }}else {return false}}function confirmReset (form) {
if (confirm("Are you sure you want to clear the form?")) {return true}
Form verify will check the form to make sure the user filled out the required elements correctly before submiting it to the server. The form below will not be submitted unless you fill out all elements.<p>